home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH36.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-08  |  188 b   |  15 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  int a = 5;
  5.  int b = 10;
  6.  if (a > b)
  7.  printf("a is greater than b");
  8.  else
  9.  if (b > a)
  10.  printf("b is greater than a");
  11.  else
  12.  printf("a=b");
  13.  
  14.  }
  15.